From 5cbaa75a9115ce57713aab502ec350ab3908e3dc Mon Sep 17 00:00:00 2001 From: "shand@kneesaa.uk.xensource.com" Date: Tue, 20 Jun 2006 11:04:58 +0100 Subject: [PATCH] Make the credit scheduler the default - a number of bugs have been fixed (thanks to all for testing!) and now seems ready for more widespread usage. Signed-off-by: Steven Hand --- xen/common/schedule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/common/schedule.c b/xen/common/schedule.c index 49384c7468..8d2f44be35 100644 --- a/xen/common/schedule.c +++ b/xen/common/schedule.c @@ -33,8 +33,8 @@ extern void arch_getdomaininfo_ctxt(struct vcpu *, struct vcpu_guest_context *); -/* opt_sched: scheduler - default to SEDF */ -static char opt_sched[10] = "sedf"; +/* opt_sched: scheduler - default to credit */ +static char opt_sched[10] = "credit"; string_param("sched", opt_sched); #define TIME_SLOP (s32)MICROSECS(50) /* allow time to slip a bit */ -- 2.30.2